home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Misc / RZToDoList / Source / ToDoInspector.h < prev    next >
Encoding:
Text File  |  1995-06-12  |  866 b   |  42 lines

  1. /* 
  2.  * ToDoInspector - controller for the inspector panel
  3.  *
  4.  * You may freely copy, distribute and reuse the code in this example.
  5.  * This code is provided AS IS without warranty of any kind, expressed 
  6.  * or implied, as to its fitness for any particular use.
  7.  *
  8.  * Copyright 1995 Ralph Zazula (rzazula@next.com).  All Rights Reserved.
  9.  *
  10.  */
  11.  
  12. #import <appkit/appkit.h>
  13.  
  14. @interface ToDoInspector:Object
  15. {
  16.     id    typeMatrix;
  17.      id    statusMatrix;
  18.      id    privateSwitch;
  19.      id    completedSwitch;
  20.      id    createdText;
  21.      id    priorityText;
  22.      id    completedText;
  23.      id    showPendingSwitch;
  24.      id    showCompletedSwitch;
  25.      id    showPrivateSwitch;
  26.     id    window;
  27.      id    _reservedToDoInspector1;
  28. }
  29.  
  30. - window;
  31. - (int)type;
  32. - switchType:sender;
  33. - completed:sender;
  34. - private:sender;
  35. - toggleShowPending:sender;
  36. - toggleShowCompleted:sender;
  37. - toggleShowPrivate:sender;
  38. - windowDidUpdate:sender;
  39.  
  40. @end
  41.  
  42.